home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / graphics / pov2doc.zip / COLORS.POV < prev    next >
Text File  |  1993-08-06  |  10KB  |  710 lines

  1. // Persistence Of Vision raytracer version 2.0 sample file.
  2.  
  3. // By Chris Young & Dan Farmer
  4. // Illustrates many of the colors in standard include file "colors.inc"
  5.  
  6. #include "colors.inc"
  7.  
  8. #declare Col0 = -36
  9. #declare Col1 = -30
  10. #declare Col2 = -24
  11. #declare Col3 = -18
  12. #declare Col4 = -12
  13. #declare Col5 = -6
  14. #declare Col6 = 0
  15. #declare Col7 = 6
  16. #declare Col8 = 12
  17. #declare Col9 = 18
  18. #declare Col10 = 24
  19. #declare Col11 = 30
  20. #declare Col12 = 36
  21.  
  22. #declare Row1 = 24
  23. #declare Row2 = 18
  24. #declare Row3 = 12
  25. #declare Row4 = 6
  26. #declare Row5 = 0
  27. #declare Row6 = -6
  28. #declare Row7 = -12
  29. #declare Row8 = -18
  30. #declare Row9 = -24
  31. #declare Row10 = -30
  32.  
  33.  
  34. camera {
  35.    location <Col6,  -3,  -350>
  36.    direction <0, 0, 5.5>
  37.    look_at <Col6, -3, 0>
  38. }
  39.  
  40. light_source {<-500, 500, -1500> color White}
  41.  
  42.  
  43. default {
  44.    finish {
  45.       phong 1 phong_size 100
  46.       ambient .15
  47.       diffuse .7
  48.    }
  49. }
  50.  
  51. #declare Dist = -4
  52. #declare Radius = 3
  53.  
  54. plane {
  55.   z,3.1
  56.   pigment {White}
  57. }
  58.  
  59. sphere {  
  60.   <Col0, Row1, Dist>, Radius 
  61.   pigment {Gray05}
  62. }
  63.  
  64. sphere {
  65.   <Col1, Row1, Dist>, Radius
  66.    pigment {Gray10}
  67. }
  68.  
  69. sphere {
  70.   <Col2, Row1, Dist>, Radius
  71.    pigment {Gray15}
  72. }
  73.  
  74. sphere {
  75.   <Col3, Row1, Dist>, Radius
  76.    pigment {Gray20}
  77. }
  78.  
  79. sphere {
  80.   <Col4, Row1, Dist>, Radius
  81.    pigment {Gray25}
  82. }
  83.  
  84. sphere {
  85.   <Col5, Row1, Dist>, Radius
  86.    pigment {Gray30}
  87. }
  88.  
  89. sphere {
  90.   <Col6, Row1, Dist>, Radius
  91.    pigment {Gray35}
  92. }
  93.  
  94. sphere {
  95.   <Col7, Row1, Dist>, Radius
  96.    pigment {Gray40}
  97. }
  98.  
  99. sphere {
  100.   <Col8, Row1, Dist>, Radius
  101.    pigment {Gray45}
  102. }
  103.  
  104. sphere {
  105.   <Col9, Row1, Dist>, Radius
  106.    pigment {Gray50}
  107. }
  108.  
  109. sphere {
  110.   <Col10, Row1, Dist>, Radius
  111.    pigment {Gray55}
  112. }
  113.  
  114. sphere {
  115.   <Col11, Row1, Dist>, Radius
  116.    pigment {Gray60}
  117. }
  118.  
  119. sphere {
  120.   <Col12, Row1, Dist>, Radius
  121.    pigment {Gray65}
  122. }
  123.  
  124. sphere {
  125.   <Col0, Row2, Dist>, Radius
  126.    pigment {Gray70}
  127. }
  128.  
  129. sphere {
  130.   <Col1, Row2, Dist>, Radius
  131.    pigment {Gray75}
  132. }
  133.  
  134. sphere {
  135.   <Col2, Row2, Dist>, Radius
  136.    pigment {Gray80}
  137. }
  138.  
  139. sphere {
  140.   <Col3, Row2, Dist>, Radius
  141.    pigment {Gray85}
  142. }
  143.  
  144. sphere {
  145.   <Col4, Row2, Dist>, Radius
  146.    pigment {Gray90}
  147. }
  148.  
  149. sphere {
  150.   <Col5, Row2, Dist>, Radius
  151.    pigment {Gray95}
  152. }
  153.  
  154. sphere {
  155.   <Col6, Row2, Dist>, Radius
  156.    pigment {DimGray}
  157. }
  158.  
  159. sphere {
  160.   <Col7, Row2, Dist>, Radius
  161.    pigment {Grey}
  162. }
  163.  
  164. sphere {
  165.   <Col8, Row2, Dist>, Radius
  166.    pigment {LightGrey}
  167. }
  168.  
  169. sphere {
  170.   <Col9, Row2, Dist>, Radius
  171.    pigment {VLightGrey}
  172. }
  173.  
  174. sphere {
  175.   <Col10, Row2, Dist>, Radius
  176.    pigment {Clear}
  177. }
  178.  
  179. sphere {
  180.   <Col11, Row2, Dist>, Radius
  181.    pigment {White}
  182. }
  183.  
  184. sphere {
  185.   <Col12, Row2, Dist>, Radius
  186.    pigment {Red}
  187. }
  188.  
  189. sphere {
  190.   <Col0, Row3, Dist>, Radius
  191.    pigment {Green}
  192. }
  193.  
  194. sphere {
  195.   <Col1, Row3, Dist>, Radius
  196.    pigment {Blue}
  197. }
  198.  
  199. sphere {
  200.   <Col2, Row3, Dist>, Radius
  201.    pigment {Yellow}
  202. }
  203.  
  204. sphere {
  205.   <Col3, Row3, Dist>, Radius
  206.    pigment {Cyan}
  207. }
  208.  
  209. sphere {
  210.   <Col4, Row3, Dist>, Radius
  211.    pigment {Magenta}
  212. }
  213.  
  214. sphere {
  215.   <Col5, Row3, Dist>, Radius
  216.    pigment {Black}
  217. }
  218.  
  219. sphere {
  220.   <Col6, Row3, Dist>, Radius
  221.    pigment {Aquamarine}
  222. }
  223.  
  224. sphere {
  225.   <Col7, Row3, Dist>, Radius
  226.    pigment {BlueViolet}
  227. }
  228.  
  229. sphere {
  230.   <Col8, Row3, Dist>, Radius
  231.    pigment {Brown}
  232. }
  233.  
  234. sphere {
  235.   <Col9, Row3, Dist>, Radius
  236.    pigment {CadetBlue}
  237. }
  238.  
  239. sphere {
  240.   <Col10, Row3, Dist>, Radius
  241.    pigment {Coral}
  242. }
  243.  
  244. sphere {
  245.   <Col11, Row3, Dist>, Radius
  246.    pigment {CornflowerBlue}
  247. }
  248.  
  249. sphere {
  250.   <Col12, Row3, Dist>, Radius
  251.    pigment {DarkGreen}
  252. }
  253.  
  254. sphere {
  255.   <Col0, Row4, Dist>, Radius
  256.    pigment {DarkOliveGreen}
  257. }
  258.  
  259. sphere {
  260.   <Col1, Row4, Dist>, Radius
  261.    pigment {DarkOrchid}
  262. }
  263.  
  264. sphere {
  265.   <Col2, Row4, Dist>, Radius
  266.    pigment {DarkSlateBlue}
  267. }
  268.  
  269. sphere {
  270.   <Col3, Row4, Dist>, Radius
  271.    pigment {DarkSlateGrey}
  272. }
  273.  
  274. sphere {
  275.   <Col4, Row4, Dist>, Radius
  276.    pigment {DarkTurquoise}
  277. }
  278.  
  279. sphere {
  280.   <Col5, Row4, Dist>, Radius
  281.    pigment {Firebrick}
  282. }
  283.  
  284. sphere {
  285.   <Col6, Row4, Dist>, Radius
  286.    pigment {ForestGreen}
  287. }
  288.  
  289. sphere {
  290.   <Col7, Row4, Dist>, Radius
  291.    pigment {Gold}
  292. }
  293.  
  294. sphere {
  295.   <Col8, Row4, Dist>, Radius
  296.    pigment {Goldenrod}
  297. }
  298.  
  299. sphere {
  300.   <Col9, Row4, Dist>, Radius
  301.    pigment {GreenYellow}
  302. }
  303.  
  304. sphere {
  305.   <Col10, Row4, Dist>, Radius
  306.    pigment {IndianRed}
  307. }
  308.  
  309. sphere {
  310.   <Col11, Row4, Dist>, Radius
  311.    pigment {Khaki}
  312. }
  313.  
  314. sphere {
  315.   <Col12, Row4, Dist>, Radius
  316.    pigment {LightBlue}
  317. }
  318.  
  319. sphere {
  320.   <Col0, Row5, Dist>, Radius
  321.    pigment {LightSteelBlue}
  322. }
  323.  
  324. sphere {
  325.   <Col1, Row5, Dist>, Radius
  326.    pigment {LimeGreen}
  327. }
  328.  
  329. sphere {
  330.   <Col2, Row5, Dist>, Radius
  331.    pigment {Maroon}
  332. }
  333.  
  334. sphere {
  335.   <Col3, Row5, Dist>, Radius
  336.    pigment {MediumAquamarine}
  337. }
  338.  
  339. sphere {
  340.   <Col4, Row5, Dist>, Radius
  341.    pigment {MediumBlue}
  342. }
  343.  
  344. sphere {
  345.   <Col5, Row5, Dist>, Radius
  346.    pigment {MediumForestGreen}
  347. }
  348.  
  349. sphere {
  350.   <Col6, Row5, Dist>, Radius
  351.    pigment {MediumGoldenrod}
  352. }
  353.  
  354. sphere {
  355.   <Col7, Row5, Dist>, Radius
  356.    pigment {MediumOrchid}
  357. }
  358.  
  359. sphere {
  360.   <Col8, Row5, Dist>, Radius
  361.    pigment {MediumSeaGreen}
  362. }
  363.  
  364. sphere {
  365.   <Col9, Row5, Dist>, Radius
  366.    pigment {MediumSlateBlue}
  367. }
  368.  
  369. sphere {
  370.   <Col10, Row5, Dist>, Radius
  371.    pigment {MediumSpringGreen}
  372. }
  373.  
  374. sphere {
  375.   <Col11, Row5, Dist>, Radius
  376.    pigment {MediumTurquoise}
  377. }
  378.  
  379. sphere {
  380.   <Col12, Row5, Dist>, Radius
  381.    pigment {MediumVioletRed}
  382. }
  383.  
  384. sphere {
  385.   <Col0, Row6, Dist>, Radius
  386.    pigment {MidnightBlue}
  387. }
  388.  
  389. sphere {
  390.   <Col1, Row6, Dist>, Radius
  391.    pigment {Navy}
  392. }
  393.  
  394. sphere {
  395.   <Col2, Row6, Dist>, Radius
  396.    pigment {NavyBlue}
  397. }
  398.  
  399. sphere {
  400.   <Col3, Row6, Dist>, Radius
  401.    pigment {Orange}
  402. }
  403.  
  404. sphere {
  405.   <Col4, Row6, Dist>, Radius
  406.    pigment {OrangeRed}
  407. }
  408.  
  409. sphere {
  410.   <Col5, Row6, Dist>, Radius
  411.    pigment {Orchid}
  412. }
  413.  
  414. sphere {
  415.   <Col6, Row6, Dist>, Radius
  416.    pigment {PaleGreen}
  417. }
  418.  
  419. sphere {
  420.   <Col7, Row6, Dist>, Radius
  421.    pigment {Pink}
  422. }
  423.  
  424. sphere {
  425.   <Col8, Row6, Dist>, Radius
  426.    pigment {Plum}
  427. }
  428.  
  429. sphere {
  430.   <Col9, Row6, Dist>, Radius
  431.    pigment {Salmon}
  432. }
  433.  
  434. sphere {
  435.   <Col10, Row6, Dist>, Radius
  436.    pigment {SeaGreen}
  437. }
  438.  
  439. sphere {
  440.   <Col11, Row6, Dist>, Radius
  441.    pigment {Sienna}
  442. }
  443.  
  444. sphere {
  445.   <Col12, Row6, Dist>, Radius
  446.    pigment {SkyBlue}
  447. }
  448.  
  449. sphere {
  450.   <Col0, Row7, Dist>, Radius
  451.    pigment {SlateBlue}
  452. }
  453.  
  454. sphere {
  455.   <Col1, Row7, Dist>, Radius
  456.    pigment {SpringGreen}
  457. }
  458.  
  459. sphere {
  460.   <Col2, Row7, Dist>, Radius
  461.    pigment {SteelBlue}
  462. }
  463.  
  464. sphere {
  465.   <Col3, Row7, Dist>, Radius
  466.    pigment {Tan}
  467. }
  468.  
  469. sphere {
  470.   <Col4, Row7, Dist>, Radius
  471.    pigment {Thistle}
  472. }
  473.  
  474. sphere {
  475.   <Col5, Row7, Dist>, Radius
  476.    pigment {Turquoise}
  477. }
  478.  
  479. sphere {
  480.   <Col6, Row7, Dist>, Radius
  481.    pigment {Violet}
  482. }
  483.  
  484. sphere {
  485.   <Col7, Row7, Dist>, Radius
  486.    pigment {VioletRed}
  487. }
  488.  
  489. sphere {
  490.   <Col8, Row7, Dist>, Radius
  491.    pigment {Wheat}
  492. }
  493.  
  494. sphere {
  495.   <Col9, Row7, Dist>, Radius
  496.    pigment {YellowGreen}
  497. }
  498.  
  499. sphere {
  500.   <Col10, Row7, Dist>, Radius
  501.    pigment {SummerSky}
  502. }
  503.  
  504. sphere {
  505.   <Col11, Row7, Dist>, Radius
  506.    pigment {RichBlue}
  507. }
  508.  
  509. sphere {
  510.   <Col12, Row7, Dist>, Radius
  511.    pigment {Brass}
  512. }
  513.  
  514. sphere {
  515.   <Col0, Row8, Dist>, Radius
  516.    pigment {Copper}
  517. }
  518.  
  519. sphere {
  520.   <Col1, Row8, Dist>, Radius
  521.    pigment {Bronze}
  522. }
  523.  
  524. sphere {
  525.   <Col2, Row8, Dist>, Radius
  526.    pigment {Bronze2}
  527. }
  528.  
  529. sphere {
  530.   <Col3, Row8, Dist>, Radius
  531.    pigment {Silver}
  532. }
  533.  
  534. sphere {
  535.   <Col4, Row8, Dist>, Radius
  536.    pigment {BrightGold}
  537. }
  538.  
  539. sphere {
  540.   <Col5, Row8, Dist>, Radius
  541.    pigment {OldGold}
  542. }
  543.  
  544. sphere {
  545.   <Col6, Row8, Dist>, Radius
  546.    pigment {Feldspar}
  547. }
  548.  
  549. sphere {
  550.   <Col7, Row8, Dist>, Radius
  551.    pigment {Quartz}
  552. }
  553.  
  554. sphere {
  555.   <Col8, Row8, Dist>, Radius
  556.    pigment {Mica}
  557. }
  558.  
  559. sphere {
  560.   <Col9, Row8, Dist>, Radius
  561.    pigment {NeonPink}
  562. }
  563.  
  564. sphere {
  565.   <Col10, Row8, Dist>, Radius
  566.    pigment {DarkPurple}
  567. }
  568.  
  569. sphere {
  570.   <Col11, Row8, Dist>, Radius
  571.    pigment {NeonBlue}
  572. }
  573.  
  574. sphere {
  575.   <Col12, Row8, Dist>, Radius
  576.    pigment {CoolCopper}
  577. }
  578.  
  579. sphere {
  580.   <Col0, Row9, Dist>, Radius
  581.    pigment {MandarinOrange}
  582. }
  583.  
  584. sphere {
  585.   <Col1, Row9, Dist>, Radius
  586.    pigment {LightWood}
  587. }
  588.  
  589. sphere {
  590.   <Col2, Row9, Dist>, Radius
  591.    pigment {MediumWood}
  592. }
  593.  
  594. sphere {
  595.   <Col3, Row9, Dist>, Radius
  596.     pigment {DarkWood}
  597. }
  598.  
  599. sphere {
  600.   <Col4, Row9, Dist>, Radius
  601.     pigment {SpicyPink}
  602. }
  603.  
  604. sphere {
  605.   <Col5, Row9, Dist>, Radius
  606.     pigment {SemiSweetChoc}
  607. }
  608.  
  609. sphere {
  610.   <Col6, Row9, Dist>, Radius
  611.     pigment {BakersChoc}
  612. }
  613.  
  614. sphere {
  615.   <Col7, Row9, Dist>, Radius
  616.     pigment {Flesh}
  617. }
  618.  
  619. sphere {
  620.   <Col8, Row9, Dist>, Radius
  621.     pigment {NewTan}
  622. }
  623.  
  624. sphere {
  625.   <Col9, Row9, Dist>, Radius
  626.     pigment {NewMidnightBlue}
  627. }
  628.  
  629. sphere {
  630.   <Col10, Row9, Dist>, Radius
  631.     pigment {VeryDarkBrown}
  632. }
  633.  
  634. sphere {
  635.   <Col11, Row9, Dist>, Radius
  636.     pigment {DarkBrown}
  637. }
  638.  
  639. sphere {
  640.   <Col12, Row9, Dist>, Radius
  641.     pigment {DarkTan}
  642. }
  643.  
  644. sphere {
  645.   <Col0, Row10, Dist>, Radius
  646.    pigment {GreenCopper}
  647. }
  648.  
  649. sphere {
  650.   <Col1, Row10, Dist>, Radius
  651.    pigment {DkGreenCopper}
  652. }
  653.  
  654. sphere {
  655.   <Col2, Row10, Dist>, Radius
  656.    pigment {DustyRose}
  657. }
  658.  
  659. sphere {
  660.   <Col3, Row10, Dist>, Radius
  661.     pigment {HuntersGreen}
  662. }
  663.  
  664. sphere {
  665.   <Col4, Row10, Dist>, Radius
  666.     pigment {Scarlet}
  667. }
  668. /*
  669. sphere {
  670.   <Col5, Row10, Dist>, Radius
  671.     pigment { }
  672. }
  673.  
  674. sphere {
  675.   <Col6, Row10, Dist>, Radius
  676.     pigment { }
  677. }
  678.  
  679. sphere {
  680.   <Col7, Row10, Dist>, Radius
  681.     pigment { }
  682. }
  683.  
  684. sphere {
  685.   <Col8, Row10, Dist>, Radius
  686.     pigment { }
  687. }
  688.  
  689. sphere {
  690.   <Col10, Row10, Dist>, Radius
  691.     pigment { }
  692. }
  693.  
  694. sphere {
  695.   <Col10, Row10, Dist>, Radius
  696.     pigment { }
  697. }
  698.  
  699. sphere {
  700.   <Col11, Row10, Dist>, Radius
  701.     pigment { }
  702. }
  703.  
  704. sphere {
  705.   <Col12, Row10, Dist>, Radius
  706.     pigment { }
  707. }
  708.  
  709. */
  710.